home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 38 / Amiga Format CD38 (1999-03-15)(Future Publishing)(GB)(Track 1 of 3)[!][issue 1999-04].iso / -websites- / haage&partner / ftp / classx / fm3-demo.lha / FM3-DEMO / Rexx / StopRexx < prev    next >
Text File  |  1997-08-29  |  583b  |  21 lines

  1. ;/**********************************************************************/
  2. ;/* ClassX Amiga Cli/Rexx script - Copyright © 1997 ClassX Development */
  3. ;/**********************************************************************/
  4.  
  5. ;/*
  6. ;    $VER: StopRexx 3.0
  7. ;    $INF: Stops the execution of a FontMachine Rexx script.
  8. ;*/
  9.  
  10. Echo "Stopping FontMachine"
  11. WaitForPort FontMachine
  12. If WARN
  13.     Echo "FontMachine is not running."
  14. Else
  15.     Sys:RexxC/HI
  16.     Sys:RexxC/RX "ADDRESS 'FontMachine' UnLockGUI"
  17.     Echo "FontMachine STOPPED"
  18. EndIF
  19.  
  20. ;/**********************************************************************/
  21.